沒有 Switch 了


react-router-dom V6 沒有 Switch 了

import Switch 要改成 Routes

<Route path='/signin' element={<Signin />} ></Route>

previous:

<Switch>
    <Route path="/signin" exact>
      <Signin />
    </Route>
</Switch>







你可能感興趣的文章

【單元測試的藝術】Chap 2: 第一個單元測試

【單元測試的藝術】Chap 2: 第一個單元測試

Return the summation of the number smaller than n

Return the summation of the number smaller than n

瀏覽器渲染流程

瀏覽器渲染流程






留言討論